home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 August / PC Plus SuperCD 50a Issue 142 (CD142a) (August 1998).iso / trial / demon / TURNPIKE.1 / CLASSES.ZIP / sun / NET / WWW / HTTP / UnauthorizedHttpRequestException.class (.txt) < prev   
Encoding:
Java Class File  |  1997-04-14  |  431 b   |  15 lines

  1. package sun.net.www.http;
  2.  
  3. import java.io.IOException;
  4. import java.net.URL;
  5.  
  6. public class UnauthorizedHttpRequestException extends IOException {
  7.    public URL url;
  8.    public HttpClient http;
  9.  
  10.    public UnauthorizedHttpRequestException(URL var1, HttpClient var2) {
  11.       this.url = var1;
  12.       this.http = var2;
  13.    }
  14. }
  15.